博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从首页问答标题到问答详情页
阅读量:5079 次
发布时间:2019-06-12

本文共 1830 字,大约阅读时间需要 6 分钟。

1.主PY文件写视图函数,带id参数。 

@app.route('/detail/<question_id>')
def detail(question_id):
    quest = 
    return render_template('detail.html', ques = quest)
@app.route('/detail/
')def detail(question_id): quest=Question.query.filter(Question.id==question_id).first() return render_template('detail.html',ques=quest)

2.首页标题的标签做带参数的链接。

      {
{ url_for('detail',question_id = foo.id) }}

{% for foo in questions %}            
  • {
    { foo.author.username }}
    {
    { foo.title }}
    发布时间:{
    { foo.creat_time }}

    {

    { foo.detail }}

  • {
    % endfor %}

    3.在详情页将数据的显示在恰当的位置。 

    {
    { ques.title}}
    {
    { ques.id  }}{
    {  ques.creat_time }}
    {
    { ques.author.username }} 
    {
    { ques.detail }}

    {

    { ques.detail }}



    4.建立评论的对象关系映射:

    class Comment(db.Model):

        __tablename__='comment'

    class Comment(db.Model):    __tablename__='comment'    id=db.Column(db.Integer, primary_key=True, autoincrement=True)    author_id = db.Column(db.Integer,db.ForeignKey('user.id'))    question_id = db.Column(db.Integer,db.ForeignKey('question.id'))    creat_time = db.Column(db.DateTime, default=datetime.now)    detail=db.Column(db.Text,nullable=False)    question=db.relationship('Question',backref=db.backref('comments'))    author=db.relationship('User',backref=db.backref('comments'))

    转载于:https://www.cnblogs.com/lwn-blog/p/7992789.html

    你可能感兴趣的文章
    [转] 再探java基础——break和continue的用法
    查看>>
    Linux IO模式及 select、poll、epoll详解(转载)
    查看>>
    一些比较不错的网站
    查看>>
    Hello World
    查看>>
    创建或打开解决方案时提示"DotNetCore.1.0.1-SDK.1.0.0.Preview2-003131-x86"错误的解决方案...
    查看>>
    Java动态代理
    查看>>
    java中构造器(Constructor)
    查看>>
    高版本chrome不再支持window.showmodaldialog 的临时替换方案【用window.open】
    查看>>
    Mysql 数据库表操作
    查看>>
    C#.NET画验证码与Cookie验证
    查看>>
    fafu oj 1048 一个简单的问题 二分
    查看>>
    NGUI 笔记
    查看>>
    [转帖] wordpress 的安装过程
    查看>>
    【转帖】技术选型之Docker容器引擎
    查看>>
    OEM/ODM/JDM
    查看>>
    P1004 方格取数
    查看>>
    简单了解ICMP协议
    查看>>
    util工具(是否是网络资源、视频播放时间显示转换、显示网速)
    查看>>
    UVa 1614 奇怪的股市
    查看>>
    POJ 3252 Round Numbers(数位dp)
    查看>>